{% extends 'base.html' %} {% block title %}Заказ #{{ order.id }} - МОЙ НЕ САМ{% endblock %} {% block content %}
| Фото | Товар | Цена | Кол-во | Сумма |
|---|---|---|---|---|
|
{% if item.product.image %}
Нет фото
{% endif %}
|
{{ item.product.name }}{% if item.product.category %} {{ item.product.category.name }} {% endif %} |
{{ item.price }} ₽ | {{ item.quantity }} | {{ item.get_total }} ₽ |
| Итого: | {{ order.total_amount }} ₽ | |||
{{ order.shipping_address }}
{{ order.phone }}
{{ order.email }}